 |
 |
 |
 |
#202517 - 04/18/04 04:56 AM
Re: [6.7] [beta] Spell Check
|
Junior Member
Registered: 11/15/03
Posts: 11
|
I'm not a programmer, but after this:
spellcheck_enable => { type => "checkbox", values => [qw(yes no)], default => q!yes!, req => 0, final_code => sub { return "FIXME"; }, },
spellcheck_width => { type => "text", length => 20, default => q!500!, req => 0, }, spellcheck_height => { type => "text", length => 20, default => q!625!, req => 0, }
Shouldn't there be a "," after the last brace?
I mean, there was one after the last brace of the "post count" section that was already there...
Just curious.
_________________________
Clay Autery "More, Better, Faster..."
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#202526 - 07/08/04 11:12 PM
Re: [6.7] [beta] Spell Check
|
I type Like navaho
Registered: 03/10/00
Posts: 25580
Loc: Texas
|
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#202534 - 09/12/04 12:48 AM
Re: [6.7] [beta] Spell Check
|
Junior Member
Registered: 04/22/03
Posts: 7
Loc: Montreal
|
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#202539 - 10/17/04 09:29 PM
Re: [6.7] [beta] Spell Check
|
Wizard
Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
|
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#202540 - 10/17/04 09:36 PM
Re: [6.7] [beta] Spell Check
|
Member
Registered: 03/31/04
Posts: 58
Loc: Israel
|
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#202547 - 09/24/05 07:47 AM
Re: [6.7] [beta] Spell Check
|
Wizard
Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
|
Originally posted by AshtarRose:</font><hr /> I can not find vars_wordlets_mods.cgi Where, what? How do I get this? <hr /></blockquote> See: http://www.ubbdev.com/ubb/ultimatebb.php/topic/33/71.html#000000 <blockquote><font class="small">Originally posted by AshtarRose: [qb] Oop, I'm getting better at this! I fixed it myself ha ha ha.. um. But how do I make the button for my spell check be an actual button that says spell check, right now its just something you click on and some of my members will not know what that is. [/qb] If you have the Wordlets_Mods modification installed you should see this as "Spell Check"
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#202551 - 09/24/05 02:41 PM
Re: [6.7] [beta] Spell Check
|
Wizard
Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
|
I know what the issue is, your description was perfect there; the problem is that, for some reason, your forum isn't reading the wordlet, either the wordlet step was skipped, not preformed properly, or the vars_wordlets_mod wasn't installed (the vars_wordlets_mod is required for the wordlets of this mod to function properly) Quoting the install instructions *******************************
* Open vars_wordlets_mods.cgi *
*******************************
Find:
=====
%vars_wordlets_mods = (
Add below:
==========
q~spell_check~ => q~Spell Check~,
q~spell_check_fix~ => q~Correct Text in UBB™ Form~,
q~spell_check_text~ => q~SpellCheck Text~,
q~spell_check_misspelled_words~ => q~There are misspelled words in the text body:~,
q~spell_check_misspelled_step1~ => q~Select a suggested word from the pull down box for each misspelled word below~,
q~spell_check_misspelled_step2~ => q~Then press the %%CORRECT%% button at the bottom of the page~,
q~spell_check_spelled_correctly~ => q~No spelling errors were found in this text.~,
q~spell_check_no_text~ => q~Enter your text to spellcheck. (Up to 5000 characters)~,
q~spell_check_close~ => q~Close~,
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#202552 - 09/24/05 02:48 PM
Re: [6.7] [beta] Spell Check
|
Journeyman
Registered: 09/22/05
Posts: 137
Loc: Columbus, OH
|
I opened the file again, I added all of those to the wordlet mod file, its still not showing up. I went through the files to double check.
my file:
%vars_wordlets_mods = ( q~spell_check~ => q~Spell Check~, q~spell_check_fix~ => q~Correct Text in UBBô Form~, q~spell_check_text~ => q~SpellCheck Text~, q~spell_check_misspelled_words~ => q~There are misspelled words in the text body:~, q~spell_check_misspelled_step1~ => q~Select a suggested word from the pull down box for each misspelled word below~, q~spell_check_misspelled_step2~ => q~Then press the %%CORRECT%% button at the bottom of the page~, q~spell_check_spelled_correctly~ => q~No spelling errors were found in this text.~, q~spell_check_no_text~ => q~Enter your text to spellcheck. (Up to 5000 characters)~, q~spell_check_close~ => q~Close~, q!mod_wordlets! => q!Modifications Wordlets!, ); 1;
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|